home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / etc / fonts / conf.avail / 30-amt-aliases.conf < prev    next >
Encoding:
Extensible Markup Language  |  2007-01-05  |  1.5 KB  |  47 lines

  1. <?xml version="1.0"?>
  2. <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
  3. <!-- conf.d/sub-pixel.conf -->
  4. <fontconfig>
  5. <!--
  6.  AMT provides metric and shape compatible fonts for these three web font
  7.  families.
  8.  However, these fonts are quite ugly and do not render well on-screen,
  9.  so we avoid matching them if the application said `anymetrics'; in that
  10.  case, a more generic font with different metrics but better appearance
  11.  will be used.
  12.  -->
  13.            <match target="pattern">
  14.           <test name="family">
  15.             <string>Times New Roman</string>
  16.           </test>
  17.           <test name="anymetrics" qual="all" compare="not_eq">
  18.             <bool>true</bool>
  19.           </test>
  20.           <edit name="family" mode="append">
  21.             <string>Thorndale AMT</string>
  22.           </edit>
  23.          </match>
  24.            <match target="pattern">
  25.           <test name="family">
  26.             <string>Arial</string>
  27.           </test>
  28.           <test name="anymetrics" qual="all" compare="not_eq">
  29.             <bool>true</bool>
  30.           </test>
  31.           <edit name="family" mode="append">
  32.             <string>Albany AMT</string>
  33.           </edit>
  34.          </match>
  35.            <match target="pattern">
  36.           <test name="family">
  37.             <string>Courier New</string>
  38.           </test>
  39.           <test name="anymetrics" qual="all" compare="not_eq">
  40.             <bool>true</bool>
  41.           </test>
  42.           <edit name="family" mode="append">
  43.             <string>Cumberland AMT</string>
  44.           </edit>
  45.          </match>
  46. </fontconfig>
  47.